home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 114 / CDRom114.iso / internet / extens / dband / Bandwidth Tester.xpi / chrome / bandwidthtest.jar / content / options.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-09-07  |  1.9 KB  |  60 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  3.  
  4. <dialog id="BandwidthTestOptions"
  5.         buttons="accept,cancel"
  6.         title="Bandwidth Tester Options"
  7.         ondialogaccept="bandwidthtest_options_save();"
  8.         ondialogcancel="return true;"
  9.         onload="bandwidthtest_options_init();"
  10.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  11.     
  12.     <script type="application/x-javascript" src="chrome://bandwidthtest/content/options.js"></script>
  13.     <groupbox>
  14.         <caption label="Test Files" />
  15.         <description>
  16.             The following files will be downloaded by the Bandwidth Tester to determine your current speed.
  17.         </description>
  18.         
  19.         <spacer height="10" />
  20.         
  21.         <hbox>
  22.             <label value="Test File #1" style="font-weight: bold;" />
  23.             <label value="(should be ~ 54 KB)" />
  24.         </hbox>
  25.         <textbox id="file_1" value="http://jgillick.nettripper.com/bandwidthtest/test/level_1.txt" />
  26.         
  27.         <spacer height="10" />
  28.         
  29.         <hbox>
  30.             <label value="Test File #2" style="font-weight: bold;" />
  31.             <label value="(should be ~ 160 KB)" />
  32.         </hbox>
  33.         <textbox id="file_2" value="http://jgillick.nettripper.com/bandwidthtest/test/level_2.txt" />
  34.         
  35.         <spacer height="10" />
  36.         
  37.         <hbox>
  38.             <label value="Test File #3" style="font-weight: bold;" />
  39.             <label value="(should be ~ 637 KB)" />
  40.         </hbox>
  41.         <textbox id="file_3" value="http://jgillick.nettripper.com/bandwidthtest/test/level_3.txt" />
  42.         
  43.         <spacer height="10" />
  44.         
  45.         <hbox>
  46.             <label value="Test File #4" style="font-weight: bold;" />
  47.             <label value="(should be ~ 1,273 KB)" />
  48.         </hbox>
  49.         <textbox id="file_4" value="http://jgillick.nettripper.com/bandwidthtest/test/level_4.txt" />
  50.         
  51.         <spacer height="10" />
  52.         
  53.         <hbox>
  54.             <label value="Test File #5" style="font-weight: bold;" />
  55.             <label value="(should be ~ 2,545 KB)" />
  56.         </hbox>
  57.         <textbox id="file_5" value="http://jgillick.nettripper.com/bandwidthtest/test/level_5.txt" />
  58.     </groupbox>
  59.     
  60. </dialog>